import { PLACEHOLDER_SLUGS } from '@akinon/pz-theme/src/chrome/placeholder-slugs'; import { ROUTES } from 'routes'; import AccountPageSlot from '../account-page-slot'; // The account root screen lives in its own route group so its takeover slug // covers exactly this screen, not the whole account subtree. export default function DashboardLayout({ children }: { children: React.ReactNode; }) { return ( {children} ); }